docs: add Copilot gRPC service to extension framework documentation#7222
Merged
rajeshkamal5050 merged 1 commit intoAzure:mainfrom Mar 20, 2026
Merged
docs: add Copilot gRPC service to extension framework documentation#7222rajeshkamal5050 merged 1 commit intoAzure:mainfrom
rajeshkamal5050 merged 1 commit intoAzure:mainfrom
Conversation
Document the CopilotService gRPC API in the extension framework docs, covering all 7 RPCs: Initialize, ListSessions, SendMessage, GetUsageMetrics, GetFileChanges, StopSession, and GetMessages. Includes request/response type specifications, a Go usage example demonstrating the full session lifecycle, and use cases. Follows the same structure and style as existing gRPC service sections. Adds the Copilot Service entry to both the top-level and section-level tables of contents. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
vhvb1989
approved these changes
Mar 20, 2026
rajeshkamal5050
approved these changes
Mar 20, 2026
Contributor
|
/check-enforcer override |
This was referenced Mar 20, 2026
jongio
pushed a commit
to jongio/azure-dev
that referenced
this pull request
Mar 27, 2026
…zure#7222) Document the CopilotService gRPC API in the extension framework docs, covering all 7 RPCs: Initialize, ListSessions, SendMessage, GetUsageMetrics, GetFileChanges, StopSession, and GetMessages. Includes request/response type specifications, a Go usage example demonstrating the full session lifecycle, and use cases. Follows the same structure and style as existing gRPC service sections. Adds the Copilot Service entry to both the top-level and section-level tables of contents. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
jongio
pushed a commit
to jongio/azure-dev
that referenced
this pull request
Mar 27, 2026
…zure#7222) Document the CopilotService gRPC API in the extension framework docs, covering all 7 RPCs: Initialize, ListSessions, SendMessage, GetUsageMetrics, GetFileChanges, StopSession, and GetMessages. Includes request/response type specifications, a Go usage example demonstrating the full session lifecycle, and use cases. Follows the same structure and style as existing gRPC service sections. Adds the Copilot Service entry to both the top-level and section-level tables of contents. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
jongio
pushed a commit
to jongio/azure-dev
that referenced
this pull request
Mar 27, 2026
…zure#7222) Document the CopilotService gRPC API in the extension framework docs, covering all 7 RPCs: Initialize, ListSessions, SendMessage, GetUsageMetrics, GetFileChanges, StopSession, and GetMessages. Includes request/response type specifications, a Go usage example demonstrating the full session lifecycle, and use cases. Follows the same structure and style as existing gRPC service sections. Adds the Copilot Service entry to both the top-level and section-level tables of contents. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
jongio
pushed a commit
to jongio/azure-dev
that referenced
this pull request
Mar 27, 2026
…zure#7222) Document the CopilotService gRPC API in the extension framework docs, covering all 7 RPCs: Initialize, ListSessions, SendMessage, GetUsageMetrics, GetFileChanges, StopSession, and GetMessages. Includes request/response type specifications, a Go usage example demonstrating the full session lifecycle, and use cases. Follows the same structure and style as existing gRPC service sections. Adds the Copilot Service entry to both the top-level and section-level tables of contents. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
jongio
pushed a commit
to jongio/azure-dev
that referenced
this pull request
Mar 27, 2026
…zure#7222) Document the CopilotService gRPC API in the extension framework docs, covering all 7 RPCs: Initialize, ListSessions, SendMessage, GetUsageMetrics, GetFileChanges, StopSession, and GetMessages. Includes request/response type specifications, a Go usage example demonstrating the full session lifecycle, and use cases. Follows the same structure and style as existing gRPC service sections. Adds the Copilot Service entry to both the top-level and section-level tables of contents. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
achauhan-scc
pushed a commit
to achauhan-scc/azure-dev
that referenced
this pull request
Apr 2, 2026
…zure#7222) Document the CopilotService gRPC API in the extension framework docs, covering all 7 RPCs: Initialize, ListSessions, SendMessage, GetUsageMetrics, GetFileChanges, StopSession, and GetMessages. Includes request/response type specifications, a Go usage example demonstrating the full session lifecycle, and use cases. Follows the same structure and style as existing gRPC service sections. Adds the Copilot Service entry to both the top-level and section-level tables of contents. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Add documentation for the CopilotService gRPC API to the extension framework docs, bringing it in line with the 13 existing gRPC service sections.
Changes
Details
The new section follows the same structure and style as the other gRPC service sections: level-3 heading, introductory paragraph, proto file link blockquote, level-4 method headings with request/response specifications, a Go usage example, and a use-cases list.
All content is sourced from copilot.proto and the demo extension implementation.